home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 July
/
EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso
/
earkit
/
news
/
thor
/
rexx
/
fse
/
cool.fse
< prev
next >
Wrap
Text File
|
1998-05-24
|
659b
|
42 lines
/* $VER: Cool.fse 1.0 (26.4.95)
** (using "TEXT COOLER v1.0 by
** DDT of the HALF-BRAINS TEAM") text
** block - by Troels Walsted Hansen
*/
options results
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
call open(tfh, "t:UncoolTempFile", W)
do i=currline to lastline
SETPOS 1 i
GETLINE
line = result
if(line ~= "") then do
DELETELINES
i = i-1
end
else break
call writeln(tfh, line)
end
call close(tfh)
address command "Cool >nil: t:UncoolTempFile t:CoolTempFile"
call delete("t:UncoolTempFile")
SETPOS currcolumn currline
INCLUDEFILE "t:CoolTempFile"
call delete("t:CoolTempFile")
SETPOS currcolumn currline